Add a style class to fullscreened windows
authorMatthias Clasen <mclasen@redhat.com>
Fri, 26 Sep 2014 22:08:46 +0000 (18:08 -0400)
committerMatthias Clasen <mclasen@redhat.com>
Fri, 26 Sep 2014 22:08:46 +0000 (18:08 -0400)
This will let us tweak stuff that gets shown in fullscreen windows,
https://bugzilla.gnome.org/show_bug.cgi?id=654051

gtk/gtkwindow.c

index e905d349b7288899aadee7490daa035744db4c01..8a5b54b65f159d0ec92a1e6ae8bdfbaa9902cd57 100644 (file)
@@ -7149,6 +7149,11 @@ update_window_style_classes (GtkWindow *window)
     gtk_style_context_add_class (context, "maximized");
   else
     gtk_style_context_remove_class (context, "maximized");
+
+  if (priv->fullscreen)
+    gtk_style_context_add_class (context, "fullscreen");
+  else
+    gtk_style_context_remove_class (context, "fullscreen");
 }
 
 static void